|
This is a built-in template used for filling the body of an overridden method each time it is generated by the program,
e.g. when calling the Code | Override Method... function (Ctrl+O). The template is editable. Along with Java expressions and comments, you can also use the predefined variables that will be then expanded into the corresponding values. |
| Predefined variables will take the following values: | ||
| a super method call, for void methods - super(); with or without parameters; for other methods - return super(); with or without parameters | ||
| a return type of a created method | ||
| a value returned by the method by default | ||
| name of the method that is overridden | ||
| qualified name of the class where method is overridden | ||